home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Freeware / Adobe Air 1.5 / AdobeAIRInstaller.exe / setup.swf / scripts / mx / containers / utilityClasses / IConstraintLayout.as < prev    next >
Encoding:
Text File  |  2008-10-29  |  333 b   |  15 lines

  1. package mx.containers.utilityClasses
  2. {
  3.    public interface IConstraintLayout
  4.    {
  5.       function get constraintColumns() : Array;
  6.       
  7.       function set constraintRows(param1:Array) : void;
  8.       
  9.       function get constraintRows() : Array;
  10.       
  11.       function set constraintColumns(param1:Array) : void;
  12.    }
  13. }
  14.  
  15.